home *** CD-ROM | disk | FTP | other *** search
- <%
- '=======================================================================
- '
- ' "ASP Forums" - a web-based discussion forum implementation.
- ' Copyright (C) 1999, 2000 ASP Forums, http://www.aspforums.com/
- '
- ' This library is free software; you can redistribute it and/or
- ' modify it under the terms of the GNU Lesser General Public
- ' License as published by the Free Software Foundation; either
- ' version 2.1 of the License, or (at your option) any later version.
- '
- ' This library is distributed in the hope that it will be useful,
- ' but WITHOUT ANY WARRANTY; without even the implied warranty of
- ' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- ' Lesser General Public License for more details.
- '
- ' You should have received a copy of the GNU Lesser General Public
- ' License along with this library; if not, write to the Free Software
- ' Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- '
- '=======================================================================
-
- '=======================================================================
- ' ASP Forums version 2.0 beta 2 - July 20th 2000.
- '=======================================================================
-
- ' Appearance Constants
- Const adFlatBevel = 0
- Const ad3Dbevel = 1
-
- ' BOFAction Constants
- Const adDoMoveFirst = 0
- Const adStayBOF = 1
-
- ' CommandType Constants
- Const adCmdText = 1
- Const adCmdTable = 2
- Const adCmdStoredProc = 4
- Const adCmdUnknown = 8
-
- ' Mode Constants
- Const adModeUnknown = 0
- Const adModeRead = 1
- Const adModeWrite = 2
- Const adModeReadWrite = 3
- Const adModeShareDenyRead = 4
- Const adModeShareDenyWrite = 8
- Const adModeShareExclusive = 12
- Const adModeShareDenyNone = 16
-
- ' ConnectionString Constants
- Const adConnectStringTypeUnknown = 0
- Const adOLEDB = 1
- Const adOLEDBFile = 2
- Const adODBC = 3
-
- ' CursorLocation Constants
- Const adUseServer = 2
- Const adUseClient = 3
-
- ' CursorType Constants
- Const adOpenForwardOnly = 0 ' Note ForwardOnly cursors are not available for the ADO Data Control.
- Const adOpenKeyset = 1
- Const adOpenDynamic = 2
- Const adOpenStatic = 3
-
- ' EOFAction Constants
- Const adDoMoveLast = 0
- Const adStayEOF = 1
- Const adDoAddNew = 2
-
- ' EventReason Constants
- Const adRsnAddNew = 1
- Const adRsnDelete = 2
- Const adRsnUpdate = 3
- Const adRsnUndoUpdate = 4
- Const adRsnUndoAddNew = 5
- Const adRsnUndoDelete = 6
- Const adRsnRequery = 7
- Const adRsnResynch = 8
- Const adRsnClose = 9
- Const adRsnMove = 10
-
- ' EventStatus Constants
- Const adStatusOK = 1
- Const adStatusErrorsOccurred = 2
- Const adStatusCantDeny = 3
- Const adStatusCancel = 4
- Const adStatusUnwantedEvent = 5
-
- ' LockType Constants
- Const adLockUnspecified = -1
- Const adLockReadOnly = 1
- Const adLockPessimistic = 2
- Const adLockOptimistic = 3
- Const adLockBatchOptimistic = 4
-
- ' Orientation Constants
- Const adHorizontal = 0
- Const adVertical = 1
- %>